home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
vrpt4headers.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
520b
|
18 lines
CREATE OR REPLACE VIEW VRPT4HEADERS AS
SELECT
RPTNAMES.short_name,
r1.header h1,
r2.header h2,
r3.header h3,
r4.header h4
FROM RPTNAMES,
RPTHEADERS r1, RPTHEADERS r2, RPTHEADERS r3, RPTHEADERS r4
WHERE
RPTNAMES.max_columns = 4 AND
r1.rptclass = 1 AND r2.rptclass = 2 AND
r3.rptclass = 3 AND r4.rptclass = 4 AND
r1.report_indx = RPTNAMES.report_indx AND
r2.report_indx = RPTNAMES.report_indx AND
r3.report_indx = RPTNAMES.report_indx AND
r4.report_indx = RPTNAMES.report_indx
;